home *** CD-ROM | disk | FTP | other *** search
/ Geek 6 / Geek-006.iso / mac / mEdit_1.0b3.sea.hqx / mEdit 1.0b3.rsrc / STR#_5000.txt < prev    next >
Text File  |  2000-04-13  |  2KB  |  162 lines

  1. wordDelimiter=put the wordDelimiter into oldDelimiter
  2. set the wordDelimiter to |<character>|
  3.  
  4. set the wordDelimiter to oldDelimiter
  5.  
  6. numberFormat=put the numberFormat into oldFormat
  7. set the numberFormat to |<character>|
  8.  
  9. set the numberFormat to oldFormat
  10.  
  11. multiEffect=set the multiEffect to true
  12. |
  13. set the multiEffect to false
  14.  
  15. lockMessages=set the lockMessages to true
  16. |
  17. set the lockMessages to false
  18.  
  19. lockScreen=set the lockScreen to true
  20. |
  21. set the lockScreen to false
  22.  
  23. lineDelimiter=put the lineDelimiter into oldDelimiter
  24. set the lineDelimiter to |<character>|
  25.  
  26. set the lineDelimiter to oldDelimiter
  27.  
  28. itemDelimiter=put the itemDelimiter into oldDelimiter
  29. set the itemDelimiter to |<character>|
  30.  
  31. set the itemDelimiter to oldDelimiter
  32.  
  33. --
  34.  
  35. repeat with...=repeat with |<variable>| = <value1> to <value2>
  36.  
  37. end repeat
  38.  
  39. repeat while...=repeat while |<logical>|
  40.  
  41. end repeat
  42.  
  43. repeat until...=repeat until |<logical>|
  44.  
  45. end repeat
  46.  
  47. repeat for...=repeat for |<value>| times
  48.  
  49. end repeat
  50.  
  51. repeat forever...=repeat forever
  52. |
  53. end repeat
  54.  
  55. --
  56.  
  57. try...catch...throw...end=try 
  58. |<statements>|
  59. [throw <errorNumber>]
  60. catch <errorNumber1>
  61. <statements>
  62. catch <errorNumber2>
  63. <statements>
  64. end try
  65.  
  66. switch...case...end=switch |<condition>|
  67. case <value1>
  68. -- case 1 statements
  69.  
  70. exit switch
  71. case <value2>
  72. -- case 2 statements
  73.  
  74. exit switch
  75. end switch
  76.  
  77. if...then...else if...else...end=if |<logical1>| then
  78. -- logical 1 true statements
  79.  
  80. else if <logical2> then
  81. -- logical 2 true statements
  82.  
  83. else
  84. -- both false statements
  85.  
  86. end if
  87.  
  88. if...then...else...end=if |<logical>| then
  89. -- true statements
  90.  
  91. else
  92. -- false statements
  93.  
  94. end if
  95.  
  96. if...then...else...=if |<logical>| then
  97. -- true statements
  98.  
  99. else <false_statements>
  100.  
  101. if...then...end=if |<logical>| then
  102. -- true statements
  103.  
  104. end if
  105.  
  106. if...then...=if |<logical>| then <true_statements>
  107.  
  108. --
  109.  
  110. on quitSuperCard...=on quitSuperCard
  111. |
  112. end quitSuperCard
  113.  
  114. on closeProject...=on closeProject
  115. |
  116. end closeProject
  117.  
  118. on closeWindow...=on closeWindow
  119. |
  120. end closeWindow
  121.  
  122. on closeBackground...=on closeBackground
  123. |
  124. end closeBackground
  125.  
  126. on closeCard...=on closeCard
  127. |
  128. end closeCard
  129.  
  130. --
  131.  
  132. on openCard...=on openCard
  133. |
  134. end openCard
  135.  
  136. on openBackground...=on openBackground
  137. |
  138. end openBackground
  139.  
  140. on openWindow...=on openWindow
  141. |
  142. end openWindow
  143.  
  144. on openProject...=on openProject
  145. |
  146. end openProject
  147.  
  148. on startUp=on startUp
  149. |
  150. end startUp
  151.  
  152. --
  153.  
  154. function...=function xxx
  155. |
  156. end xxx
  157.  
  158. on...=on xxx
  159. |
  160. end xxx
  161.  
  162.